Parallel Routes (1/2)
What are Parallel Routes?
    Parallel Routes allows you to simultaneously or conditionally render one or more pages within the same layout. They are useful for highly dynamic sections of an app, such as dashboards and feeds on social sites. For example, considering a dashboard, you can use parallel routes to simultaneously render the team and analytics pages within same page layout.
    • Parallel routes are created using named slots. Slots are defined with the @folder convention.
    • Each slot has its own page.js
    • Slots are passed as props to the shared parent layout.
    • Slots are not route segments and do not affect the URL structure.